home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E32.CC < prev    next >
C/C++ Source or Header  |  1991-04-22  |  221b  |  19 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_32()
  5. {
  6.   if (empty())
  7.     return;
  8.   if (modrm > 0277)
  9.   {
  10.     //
  11.     emu_bad();
  12.   }
  13.   else
  14.   {
  15.     // fist m32int
  16.     r_mov(st(), (long *)get_modrm());
  17.   }
  18. }
  19.